home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / var / lib / dpkg / info / ghostscript.prerm < prev    next >
Encoding:
Text File  |  2012-12-27  |  280 b   |  25 lines

  1. #! /bin/sh
  2.  
  3. set -e
  4.  
  5. case "$1" in
  6.     remove)
  7.     rm -f /var/lib/ghostscript/fonts/cidfmap \
  8.       /var/lib/ghostscript/fonts/Fontmap
  9.     ;;
  10.     upgrade)
  11.     ;;
  12.     deconfigure)
  13.     ;;
  14.     failed-upgrade)
  15.     ;;
  16.     *)
  17.     echo "prerm called with unknown argument \`$1'" >&2
  18.     exit 1
  19.     ;;
  20. esac
  21.  
  22.  
  23.  
  24. exit 0
  25.